home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Toolbox / Visual Basic Toolbox (P.I.E.)(1996).ISO / gauge / slidvb25 / therm.frm < prev    next >
Text File  |  1995-09-15  |  2KB  |  74 lines

  1. VERSION 2.00
  2. Begin Form Form1 
  3.    BackColor       =   &H00000000&
  4.    Caption         =   "Form1"
  5.    ClientHeight    =   6768
  6.    ClientLeft      =   948
  7.    ClientTop       =   1368
  8.    ClientWidth     =   3540
  9.    Height          =   7188
  10.    Left            =   900
  11.    LinkTopic       =   "Form1"
  12.    ScaleHeight     =   6768
  13.    ScaleWidth      =   3540
  14.    Top             =   996
  15.    Width           =   3636
  16.    Begin SLIDER Slider1 
  17.       BackColor       =   &H00C0C0C0&
  18.       BarBorder       =   0
  19.       BarInner        =   0
  20.       BarOuter        =   1
  21.       BevelInner      =   0  ' 0 - None
  22.       BevelOuter      =   0  ' 0 - None
  23.       BevelWidth      =   2
  24.       BorderWidth     =   0
  25.       Direction       =   1  ' 1 - Backward
  26.       FontBold        =   0   'False
  27.       FontItalic      =   0   'False
  28.       FontName        =   "Small Fonts"
  29.       FontSize        =   6
  30.       FontStrikethru  =   0   'False
  31.       FontUnderline   =   0   'False
  32.       Height          =   5565
  33.       KnobColor       =   &H00000000&
  34.       KnobOffset      =   0
  35.       KnobStyle       =   0  ' 0 - None
  36.       KnobXScale      =   0
  37.       KnobYScale      =   0
  38.       Left            =   1110
  39.       Max             =   110
  40.       Min             =   -14
  41.       MouseControl    =   -1  'True
  42.       OffColor        =   &H000000FF&
  43.       OffPicture      =   THERM.FRX:0000
  44.       OnColor         =   &H0000FF00&
  45.       OnPicture       =   THERM.FRX:3662
  46.       Orientation     =   1  ' 1 - Vertical
  47.       Shape           =   ""
  48.       ShapeStyle      =   0  ' 0 - Rectangle
  49.       TabIndex        =   0
  50.       TicID           =   0
  51.       Tics            =   2
  52.       Top             =   690
  53.       Value           =   50
  54.       Width           =   675
  55.       ZLoad           =   THERM.FRX:6CC4
  56.    End
  57.    Begin Label Label1 
  58.       BackColor       =   &H00000000&
  59.       Caption         =   "50"
  60.       ForeColor       =   &H00FFFFFF&
  61.       Height          =   492
  62.       Left            =   1800
  63.       TabIndex        =   1
  64.       Top             =   3240
  65.       Width           =   1092
  66.    End
  67. End
  68. Sub Slider1_Change ()
  69.  
  70.     label1 = Int(slider1)
  71.  
  72. End Sub
  73.  
  74.